home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.439 < prev    next >
Encoding:
Text File  |  1996-02-12  |  27.7 KB  |  797 lines

  1. Frequently Asked Questions (FAQS);faqs.439
  2.  
  3.  
  4.  
  5. Below, I include the configuration I use on my pc.  I unpacked the
  6. ka9q distribution into \ka9q.  All the configuration files are located
  7. there.
  8.  
  9. I have also been able to use the NCSA telnet packet driver, however, I
  10. could not use ftp with that, so I gave it up some months ago.
  11.  
  12. Here's what I use on the PC:
  13.  
  14. In a file called "doit2.bat";
  15. net -d \ka9q dialup.net
  16.  
  17. In a file called "dialup.net";
  18. ip address 137.175.2.42
  19. attach asy 0x3f8 4 ppp pp0 1024 256 9600
  20. dialer pp0 dialup.ppp
  21. ppp pp0 trace 2
  22. ppp pp0 quick
  23. ppp pp0 lcp open
  24. ppp pp0 ipcp open
  25. route add default pp0
  26. ip ttl 32
  27. tcp mss 1460
  28. tcp window 2920
  29. domain addserver 137.175.2.11
  30. domain suffix MorningStar.Com
  31. domain cache clean on
  32. start echo
  33. start discard
  34. start telnet
  35. start ftp
  36. start finger
  37. start ttylink
  38.  
  39. In a file called "dialup.ppp";
  40. control down
  41. wait 1000
  42. control up
  43. wait 1000
  44. wait 2000
  45. send "at\r"
  46. wait 3000 "OK"
  47. send "atdt4515016\r"
  48. wait 60000 "login: "
  49. send "<username>\r"
  50. wait 5000 "word:"
  51. wait 1000
  52. send "<password>\r"
  53.  
  54. 3.3 configure NCSA with the merit ppp driver and its unix counterpart
  55.  
  56. From ignatios@cs.uni-bonn.de (Ignatios Souvatzis)
  57.  
  58. I had at least partial success using the parameters, to the public ppp for
  59. SUNOS (dp-2.2, but I suspect any of dp-2.1 or dp-2.2* or pppd-1.01beta or
  60. ppp-1.1 would have the same behaviour) -ac -pc vjmode draft. The latter
  61. would be called in ppp-1.1 'vjmode rfc1331'.
  62.  
  63. 3.4 work BOOTP over protocols such as SLIP or PPP
  64.  
  65. Newsgroups: comp.protocols.ppp
  66. From: johnson@tigger.jvnc.net (Steven L. Johnson)
  67. Subject: Re: Tech?: BOOTP over SLIP or PPP
  68. Date: Wed, 2 Dec 1992 03:14:37 GMT
  69.  
  70. John@Johns.FrontierTech.COM (John F. Moehrke (414-284-5559)) writes:
  71.  
  72. >Does anybody know if there is a description of how to work BOOTP over
  73. >protocols such as SLIP or PPP. It seems this should work but the problem
  74. >is that there is a field in the BOOTP header that contains the physical
  75. >layer type, and these numbers are defined as the hardware types for ARP.
  76. >Since SLIP and PPP do not use ARP, they do not have numbers.
  77.  
  78. I haven't looked very far, and would appreciate a pointer to any
  79. previous work or concensus.  I've used a type 0 but only with a cisco
  80. terminal server.  I don't know if this causes problems on other
  81. implementations.
  82.  
  83. >The second problem is that the BOOTP header also contains a field
  84. >for the physical layer address (i.e. Ethernet address). PPP and SLIP do
  85. >not have an physical layer addresses. What does the BOOTP server have
  86. >to base it's IP address suggestion on?
  87.  
  88. It's my understanding that PPP can itself negotiate the IP address
  89. and that this is the preferred method.  If the IP address is included
  90. in the bootp request then the remaining configuration is done based
  91. on that IP address and not the hardware address.  With SLIP there
  92. isn't this option, so the IP address must be assigned by knowing the
  93. physical port on which the request was received.  Again, I used an
  94. address of 0 (with a address length of 0, I think) and this didn't
  95. seem to cause a problem.
  96.  
  97. On a terminal server that contained only a minimal implementation
  98. of bootp, it was necessary to send two requests.  The first request
  99. was satisfied by the terminal server and configured only the IP
  100. address.  A subsequent request (that contained the IP address provided
  101. by the first request) was forwarded by the terminal server to a
  102. bootp server on the ethernet and provided the rest of the configuration
  103. from a standard bootptab.
  104.  
  105. -Steve
  106.  
  107.  
  108. 4. Real PPP questions with answers
  109.  
  110. 4.1 Does somebody have a patent on PPP?
  111.  
  112. From: emv@msen.com (Edward Vielmetti)
  113. Newsgroups: comp.protocols.tcp-ip,comp.unix.sysv386,comp.protocols.ppp
  114. Subject: Re: Public domain PPP for SCO 2.0??
  115. Date: 8 Dec 1992 06:04:52 GMT
  116.  
  117. Scott Raney (raney@teal.csn.org) wrote:
  118. :
  119. : Doesn't matter.  I just read (in another newsgroup) that DEC has a
  120. : patent on PPP, and is asking $5000 for a license.  That means no
  121. : public domain PPP, and a rapidly increasing reluctance to support it
  122. : from OEMs.  Stick with SLIP until something better comes along.
  123.  
  124. This is *not* true.
  125.  
  126. DEC has a patent application outstanding for the negotiation of a 48 bit
  127. checksum which might be used in one of the option negotiation phases.  It
  128. is not an essential part of PPP; many implementations currently do not
  129. use this little tiny algorithm in the way they work, and they work just
  130. fine.
  131.  
  132. There is no indication that the 48 bit FCS will be accepted or standardized
  133. on by the IETF - from my reading of the  mailing lists traffic that is
  134. unlikely at this point.
  135.  
  136. There are free PPPs and there will continue to be free PPPs.  You will
  137. also more likely buy PPPs as part of hardware you buy.
  138.  
  139. ...
  140.  
  141. 4.2 Is it possible to use PPP as link layer in ISDN?
  142.  
  143. Newsgroups: comp.protocols.ppp
  144. From: bob@MorningStar.Com (Bob Sutterfield)
  145. Subject: Re: PPP in different subnets
  146. Date: Tue, 8 Dec 1992 22:03:56 GMT
  147.  
  148. In article <1992Dec3.083231.26808@news.uit.no> terjed@stud.cs.uit.no
  149. (Terje Dalen) writes:
  150.  
  151.    1. Is it possible to use PPP as link layer in ISDN?  If yes, what
  152.       about signalling? Do you need to combine PPP with the I.451 for
  153.       basic call control?
  154.  
  155. Yes, PPP is one of the optional encapsulations specified for use over
  156. ISDN networks.  It's particularly useful where end-to-end out-of-band
  157. negotiation facilities are unavailable.  Write to isdn@list.prime.com
  158. or iplpdn@nri.reston.va.us for details.
  159.  
  160.  
  161. 5. free PPP software packages.
  162.  
  163. 5.1 free PPP FOR SunOS 4.1.x:
  164.  
  165. 5.1.1.1 ppp-1.1.tar.Z, works also on BSD (386BSD: 0.0 only)
  166.   Author: brad@cayman.com
  167.   Public ftp archives:
  168.         ftp@ftp.cayman.com:pub/ppp/code/ [primary ftp server]
  169.         ftp@theory.cs.uni-bonn.de:pub/ppp/SOFTWARE/ [mirror for europe]
  170.   Comments: for the 386bsd part, see also note and ftp site at end of 5.2.1
  171.  
  172. 5.1.1.2 pppd-1.01.tar.Z
  173.   FTP Archives: merit.edu:pub/ppp/
  174.   Comment: Used to work at cs.uni-bonn.de, but we switched to the
  175.            redial code by Kirk Smith. The BSD code herein is very out
  176.            of date. Superseded by ppp-1.1.tar.Z.
  177.  
  178. 5.1.2 dp-2.2.tar.Z
  179.  
  180.   Author: Kirk Smith <ks@phoenix.acn.purdue.edu>,
  181.       peter.galvaby@micromuse.ac.uk, and others
  182.   Features: demand-dial, filtering, header compression, server, scripting,
  183.        SunOS loadable modules partially supported
  184.   Comment: basically is dp-2.2-beta with a few typos corrected and non-sun4c
  185.            kernel architecture support #ifdef'd in. Not tested on sun4m
  186.            machines yet!!!!!
  187.        Currently works at cs.uni-bonn.de. Loadable modules work fine
  188.            as long as you don't unload them. Survives even talk(1) without
  189.            crashing the machine. If you see older versions, especially
  190.            dp-2.0.tar.Z, toss them immediately!
  191.   Plans:   solaris 2.1 (sunos 5.1) support scheduled for version 2.4. :-)
  192.   Mailing-list: dp-list@phoenix.acn.purdue.edu.
  193.   Mailing-list-maintainer: Kirk Smith <ks@phoenix.acn.purdue.edu>
  194.   FTP Archives:
  195.         ftp@phoenix.acn.purdue.edu:pub/ [primary ftp server]
  196.         ftp@theory.cs.uni-bonn.de:pub/ppp/SOFTWARE/DIALUPPPP/ [for Europe]
  197.  
  198. 5.1.3 Perkins/Clements/Fox/Christy PPP for SunOS
  199.   Version: patch level 6 of 1991-10-04
  200.   Anonymous FTP: merit.edu:/pub/ppp/ppp/sunos4.1.pl6.tar.Z
  201.              premises1.quotron.com:/pub/ppp-sunos4.1.pl6.tar.Z
  202.   E-mail: gmc@quotron.com (Greg Christy)
  203.   Newsgroups: comp.protocols.ppp
  204.   Supported systems: Sun 4, SunOS 4.1.1
  205.   Comments: should be considered out of date
  206.  
  207.  
  208. 5.2 free PPP for BSD:
  209. 5.2.1 ppp-1.1.tar.Z, see 4.1.1.1
  210.  
  211. From: Frank Terhaar-Yonkers <fty@bizarre.rtpnc.epa.gov>
  212. Date: Fri, 4 Dec 1992 09:59:19 -0500
  213.  
  214. I started on the 386bsd PPP based on ppp-1.1.tar.Z.  Got something
  215. actually running but had to switch gears to get my box up
  216. to the current patchlevel because of other problems.  Hope to
  217. finish up durring the holidaze.
  218.  
  219. It's available from: sunvis.rtpnc.epa.gov:~pub/386bsd/ppp-hacks
  220.  
  221. - Frank
  222.  
  223.  
  224. 5.3 free PPP for SYSVR4:
  225. - rumoured to be ready really soon now.
  226.  
  227.  
  228. 5.4 FREE PPP FOR MSDOS:
  229.  
  230. 5.4.1 KA9Q NOS ppp additions:
  231.  
  232. - A complete ka9q distribution with ppp is available from
  233.   Authors: Phil Karn (KA9Q) with additions from lots of others. PPP code
  234.        written by Katie Stevens of UC Davis, based on the original
  235.        implementation by Drew Perkins of CMU. Updated by Bill Simpson and
  236.        Glenn McGregor of the University of Michigan.
  237.   Public FTP site: merit.edu:pub/ppp/ka9q.zip
  238.   Comment: see 3.2
  239.  
  240. 5.4.2 PPP for NCSA telnet:
  241.   Public ftp archive: merit.edu:pub/ppp/ncsappp.zip
  242.   Comment: kim@MorningStar.Com (Kim Toms) wrote in comp.protocols.ppp:
  243.        "I have also been able to use the NCSA telnet packet driver,
  244.        however, I could not use ftp with that, so I gave it up some months
  245.        ago."
  246.  
  247. 5.5 FREE PPP FOR AmigaOS:
  248.  
  249. 5.5.1 AmigaNOS (KA9Q NOS for Amiga):
  250.  
  251.   Mailing-list-maintainer: amiga-slip-request@ccs.carelton.ca
  252.   Mailing-list: amiga-slip@ccs.carleton.ca
  253.   Faq-posting: in comp.sys.amiga.datacomm, every 21 days.
  254.   Comments: AmigaNOS2.9i.lha doesn't contain PPP code, as far as can I see
  255.            without an Amiga, but contains SLIP.  However, a few people are
  256.            sure to have seen an AmigaNOS version with PPP support (version
  257.            information rumoured to be KA9Q NOS 900418 (PPP.15)) done by Marc
  258.            Boucher, and want to check out and tell me. I'll add the
  259.            information here as soon as I'll get it. If you know anything, tell
  260.            me.
  261.  
  262. 5.6 FREE PPP FOR NeXT:
  263.   Public ftp archive: merit.edu:pub/ppp/next-ppp0.2.tar.Z
  264.   Author: miron@cs.sfu.ca (Miron S. Cuperman)
  265.   Comment: The author claimed: "I heard that it doesn't work with 3.0.
  266.     I haven't looked at it myself." As can be seen from Readme etc.
  267.     files, it is a quick adaption of the Christy et al. code. It comes
  268.     with a loadable kernel module.
  269.  
  270. 5.7 free PPP for Macintosh:
  271. - MacPPP 1.0 beta from Merit Network, Inc.
  272.   author: ljb@merit.edu (Larry Blunk)
  273.   Public ftp archive: merit.edu:pub/ppp/MacPPPv1.0b1.sit.hqx
  274.   Status: Beta test. Testers should report their problems/their
  275.       successes to the author, and watch out for a newer version.
  276.  
  277.       This is a beta PPP LAP driver for MacTCP.  The current
  278.       version does not support Appletalk over PPP, only IP. The
  279.       driver requires System 6.0.5 or higher. (Note: the PPP LAP
  280.       requires MacTCP 1.1 or higher.  MacTCP 1.1 and 1.1.1 both
  281.       have problems with slow links, but 1.1.1's are less severe).
  282.  
  283. 6. ftp sites for general PPP stuff, docs etc.
  284.  
  285. try also the ftp sites mentioned above in the 'packages' section.
  286.  
  287. - Merit PPP collection at merit.edu:/pub/ppp/
  288.  
  289. - Ohio PPP collection at archive.cis.ohio-state.edu:/pub/ppp/
  290.  
  291. - KA9Q NOS collection at ucsd.edu:...
  292.  
  293. - in Europe, try theory.cs.uni-bonn.de:pub/ppp for a very selected
  294.   collection.
  295.  
  296. 7. Commercial PPP software packages.
  297.  
  298. 7.1 Amiga Inet:
  299.  
  300. A version, which will support SLIP (but, alas, not PPP), is expected to
  301. be distributed with AmigaOS 3.1 in spring 93
  302.  
  303.  
  304. 7.2 MSDOS with and without MSWindows
  305.  
  306. 7.2.1 Commercial PPP packages for MS-DOS and MS-Windows
  307.  
  308.   This information orignally appeared in the December 7th, 1992 issue
  309. of "Open Systems Today", a newspaper published by CMP Publications,
  310. (516) 562-5882.
  311.  
  312.   Each of these packages costs around $400 not including volume or other
  313. discounts. Call the vendor for details.
  314.  
  315.   Each of the packages is a complete TCP/IP stack with assorted client
  316. programs, ftp, telnet, etc.., that run under MS-DOS and/or MS-Windows.
  317. The TCP/IP client programs included in each package vary. Some use the
  318. DOS command line (even under MS-Windows) while others have full Windows
  319. GUI interfaces.  A PPP client (but not server) is included with each of
  320. these packages.
  321.  
  322. 7.2.1.1.  LAN WorkPlace for DOS 4.1 beta (see also 7.2.2)
  323.     Novell
  324.     USA: (801) 429-5588
  325.  
  326.   Summary: This is an MS-DOS TSR (Terminate and Stay Ready) solution so it
  327.   runs under either MS-DOS or MS-Windows. It includes a program called
  328.   "DIALUP" that only allows connections at 8 bits, no parity. You can use
  329.   the public domain "kermit" program instead if you need 7 bits, parity
  330.   connections.
  331.  
  332. 7.2.1.2.  PC/TCP 2.11
  333.     FTP Software
  334.     USA: (508) 685-4000
  335.  
  336.   Summary: PC/TCP is an MS-DOS TSR solution that had PPP long before it
  337.   was fashionable. Not surprisingly, it was the only non-beta product
  338.   available for this review.
  339.  
  340. 7.2.1.3.  Distinct TCP/IP 3.0 beta
  341.     Distinct Inc.
  342.     USA: (408) 741- 0781
  343.  
  344.   Summmary: This is a Windows DLL solution so it only runs under MS-Windows.
  345.   Nice scripting features and built-in support (stored configuration
  346.   strings, basically) for various modems.
  347.  
  348. 7.2.1.4.  Super-PPP for Windows 1.0 beta
  349.     Frontier Technologies Corp
  350.     USA: (414) 241-4555
  351.  
  352.   Summary: This is a Windows DLL solution that is an optional component of
  353.   their Super-TCP for Windows product. Super-TCP comes in both TSR and
  354.   DLL flavors but the Super-PPP product is strictly DLL. Very configurable.
  355.  
  356.  
  357.   Performance notes: If you run PPP under MS-Windows, your performance will
  358.   suck (it might not work at all!) unless you have 16550A UARTs in your PC.
  359.   If you have an extra card slot, you can add two 16550A ports with the
  360.   DSP 550 card from STB Systems, (214) 234-8750. To find out what kind
  361.   of UARTs are in your PC, use the program "msd.exe" in your MS-Windows 3.1
  362.   install directory or retrieve the program
  363.   /published/open-systems-today/uarttype.zip from ftp.uu.net .
  364.   Older UARTs are the 8250 or the 16450.  These UARTs will work ok under
  365.   MS-DOS. A fast CPU helps, though. No performance tests were run because
  366.   three of the four packages above are still in beta.
  367.  
  368.   For more information, read the Open Systems Today article and stay
  369.   tuned to this FAQ.
  370.  
  371. 7.2.2 MSDOS/Novell:
  372.  
  373.     Novell now offers PPP support (asynchronous) in LAN WorkPlace for DOS
  374.     version 4.1, and PPP support for synchronous and T1 connections on
  375.     NetWare v3.11 servers in the MultiProtocol Router WAN Links option.
  376.     NetWare server support for the routing of IP and IPX protocols over
  377.     asynchronous dialup lines will be available sometime around mid-1993.
  378.  
  379.     This is an excerpt from LWP41.TXT, a document describing LAN
  380.     WorkPlace for DOS v4.1 (the entire text can be found on
  381.     sjf-lwp.sjf.novell.com in ~/lwp4dos/lwp41.txt):
  382.  
  383.        *  SLIP (Serial Line Internet Protocol) and PPP (Point to Point
  384.           Protocol) support.  SLIP and PPP support is provided in the form
  385.           of a custom ODI driver for LAN WorkPlace: SLIP_PPP.COM.  This
  386.           driver allows the Novell TCP/IP Transport for DOS v4.1 to use
  387.           asynchronous connections for IP services required by DOS and
  388.           Windows applications.  It supports the following:
  389.            -  SLIP
  390.            -  Compressed SLIP (C-SLIP) using Van Jacobson TCP/IP header
  391.               compression (as described in RFC-1144).
  392.            -  PPP with support for Van Jacobson TCP/IP header compression
  393.               option negotiation and PAP (Password Authentication
  394.               Protocol) as described in RFC-1334.
  395.            -  Support for National Semiconductor's 16550, 16550A, 16450
  396.               and 8250 UARTs (Universal Asynchronous Receiver
  397.               Transmitter).  Use of a 16550 UART is strongly recommended
  398.               (and is required for use with Windows at speeds of 9600bps
  399.               or greater).  NOTE: One can use the Microsoft Diagnostics
  400.               program supplied with Windows v3.1 (MSD.EXE) to determine
  401.               which type of UART is installed in a PC.
  402.            -  Interface speeds up to 57,600 bps when used with a
  403.               V.32bis/V.42bis modem and 16550A UART.
  404.  
  405.     brian@novell.com (Brian Meek) clarified on my request, that:
  406.  
  407.     IP is the only protocol supported directly by the LAN
  408.     WorkPlace SLIP_PPP driver in this initial release.  One can use
  409.     the IPTUNNEL LAN driver (also included in LAN WorkPlace) to
  410.     encapsulate IPX in UDP/IP and attach to a NetWare v3.11 server
  411.     running a similar driver.  This "IP Tunneling" mechanism is
  412.     described in RFC 1234.
  413.  
  414.     Direct IPX support for this PPP driver will be added later,
  415.     but the current tunneling mechanism is presently more widely
  416.     applicable... since few (if any) PPP implementations are presently
  417.     available with support for IPX.
  418.  
  419. 7.3 for other computers:
  420.  
  421. From: emv@msen.com (Edward Vielmetti)
  422.  
  423. This is a woefully incomplete list, updates would be welcomed.
  424.  
  425. - Morning Star PPP
  426.   Price: $795 (40% discount for .edu)
  427.   Supported systems: Sun 4, Sun 3, NeXT, DECstation, RS/6000, SCO UNIX, ISC
  428.     UNIX, and Silicon Graphics
  429.  
  430.   Features: demand-dial, scripting, filtering, redial, header compression,
  431.     client, server, tunneling, extra escaping, the ability to work with
  432.     various keycard access systems that require user interaction during
  433.     the script
  434.  
  435.     Morningstar claims that their async PPP and SLIP run fine over UNIX
  436.     systems' native serial ports, with no additional hardware required.
  437.     For better performance, they recommend that users of PC-based UNIX
  438.     systems install either a serial interface card based on the
  439.     NS16550AFN UART, or a multiport "smart" card. They claim to do async
  440.     PPP and SLIP/CSLIP as fast as the underlying UNIX supports (usually
  441.     38400), and to do sync PPP up to T1 (1.544Mb/s) or E1 (Euro-T1,
  442.     2.048Mb/s) over our SnapLink. They provide dynamically-loadable
  443.     modules for SunOS 4.1.* and NeXTStep 2.1 and 3.0, so users needn't
  444.     even reboot during the installation process.
  445.  
  446.   FTP: ftp.morningstar.com
  447.        ftp.uu.net:/vendors/MorningStar/
  448.   E-mail: marketing@morningstar.com
  449.  
  450. - Brixton PPP
  451.   Supported systems: Sun 4
  452.   Features: demand-dial
  453.  
  454. - Marble Teleconnect
  455.   Price: $???
  456.   Supported systems: NeXT.
  457.   Features: ???
  458.   (does this really do PPP?  PSI press release didn't say so)
  459.  
  460.  
  461. 8. PPP hardware.
  462.  
  463. 8.1 Hardware that does async PPP
  464. From: emv@msen.com (Edward Vielmetti)
  465. Newsgroups: comp.protocols.ppp
  466.  
  467. Archive-name: ppp-faq/async
  468.  
  469. This is a list of hardware that supports async PPP, in the form
  470. of a terminal server or terminal server / router combination.
  471.  
  472. - Telebit Netblazer
  473.   ftp information from ftp.telebit.com
  474.   N2-1-ES    1 ethernet + 1 56K +  2 RS-232
  475.   N10-1-ES    1 ethernet + 1 56K + 10 RS-232
  476.  
  477. - Merit SCP
  478.  
  479. - Livingston Portmaster PM-11
  480.   ftp information from gator.netcom.com:/pub/livingston/
  481.  
  482. - Cisco (?)
  483.  
  484.  
  485. 8.2 Hardware that supports sync PPP
  486. Newsgroups: comp.protocols.ppp
  487. From: emv@msen.com (Edward Vielmetti)
  488.  
  489. Archive-name: ppp-faq/sync
  490.  
  491. Note that sync PPP is rather well established and it's not surprising
  492. to see lots of vendors using it as their only sync serial line
  493. protocol.  Various folks do various of the configuration options,
  494. anywhere from a full implementation to very bare bones.
  495.  
  496. The price point is arbitrary.  These are list prices for the cheapest
  497. box that has at least 1 sync PPP port that runs at 56 kb/sec plus one
  498. ethernet.  Prices approximate, your milage may vary, contact your
  499. vendor for details.
  500.  
  501. - Cisco
  502.   E-mail: sales@cisco.com
  503.  
  504. - Telebit Netblazer
  505.   Phone: +1 800 TELEBIT
  506.   E-mail: ...@telebit.com
  507.   N2-1-ES    1 ethernet + 1 56K +  2 RS-232
  508.   N10-1-ES    1 ethernet + 1 56K + 10 RS-232
  509.  
  510. - Livingston
  511.   E-Mail: ...@livingston.com
  512.   IR-4        1 ethernet + 4 56K +  1 RS-232
  513.  
  514. - 3com
  515.  
  516. - Morning Star SNAPlink
  517.   E-Mail: marketing@morningstar.com
  518.   SnapLink    SCSI-attached serial interface for Unix systems
  519.         1 T1 + 2 56K, RS-232 or RS-449
  520.   HDLC driver for sun4c ttya and ttyb included with PPP software
  521.  
  522. - Merit SCP
  523.  
  524. - NAT
  525.  
  526. - Wellfleet
  527.  
  528. 8.3 Recent summaries stuff from the net, will be merged with the rest later
  529.  
  530. From: peter@micromuse.co.uk (Peter Galbavy)
  531. Newsgroups: comp.protocols.ppp
  532. Subject: [SUMMARY]: PPP Capable Terminal Servers (Interim)
  533. Date: 27 Nov 92 12:13:35 GMT
  534. Organization: MicroMuse Limited, London, England.
  535.  
  536. I got lots of very helpful replies to my request for terminal servers
  537. that are capable of PPP.
  538.  
  539. I am not really around in the office at the moment to collate the replies
  540. into any thing coherent, but generally three were recommended (or rather
  541. mentioned). Most replies were of the form "The XXX server supports PPP,
  542. but we haven't used it yet".
  543.  
  544. I will post a more detailed summary in a week or so:
  545.  
  546. Xylogics MicroAnnex XL        (8-16 ports - release 7.0 firmware)
  547. Xylogics Annex 3        (8-64 ports - release 7.0 firmware)
  548. Livingston Portmaster        ( ??? )
  549. 3com CS/2100            (10 lines max)
  550. Datability VCP 200/300        ( ??? )
  551. Telebit NetBlazer        ( limited... I don't think of this a a TS )
  552.  
  553. The number I got were:
  554.  
  555. Xylogics US: +1 617 272 8140 <carlson@xylogics.com>
  556. Xylogics UK: +44 908 222112 <ian@xylint.co.uk>
  557. Livingston Enterprises, Inc: +1 510 426 0770
  558.  
  559. The most suggestions were for Xylogics. I have not got any further info yet.
  560. I will let you all know if you want later...
  561.  
  562. Newsgroups: comp.protocols.ppp
  563. From: bjs@beach.cis.ufl.edu (Brian J. Smith)
  564. Subject: Re: [SUMMARY]: PPP Capable Terminal Servers (Interim)
  565. Date: Fri, 27 Nov 92 23:35:18 GMT
  566.  
  567. In article <peter.722866415@hilly> peter@micromuse.co.uk (Peter
  568. Galbavy) writes:
  569.  
  570. >Xylogics Annex 3        (8-64 ports - release 7.0 firmware)
  571.  
  572. I have been *VERY* happy with my Xylogics terminal servers I have to Annex II's
  573. and a Annex 3.  They were designed for the Unix type person, and take 2 mins to
  574. get working on the network.  Port configuration will take longer, but normally
  575. you only have a few sets of configurations "modem dialin high speed" etc.
  576. Two thumbs up to this company, now if they didn't cost so much. :) :)
  577.  
  578. >Datability VCP 200/300        ( ??? )
  579.  
  580. I tested one of these, they come in 8-16 port configurations, a TCP or LAT or
  581. TCP/LAT version.  Very VMS like, I would guess a off spring of DECservers.
  582. Cheaper than the Xylogics in Price.  Didn't fit my feel due to the VMSish
  583. help and commands.
  584.  
  585. >Telebit NetBlazer        ( limited... I don't think of this a a TS )
  586.  
  587. A NetBlazer works flawlessly for remote site PPP/SLIP links.  As a term server
  588. it doesn't fit the bill.  And a bit costly.
  589.  
  590. Newsgroups: comp.protocols.ppp
  591. From: skl@wimsey.bc.ca (Samuel Lam)
  592. Subject: Re: [SUMMARY]: PPP Capable Terminal Servers (Interim)
  593. Reply-To: skl@wimsey.bc.ca (Samuel Lam)
  594. Date: Sun, 29 Nov 1992 07:21:07 GMT
  595.  
  596. In article <peter.722866415@hilly>, peter@micromuse.co.uk (Peter Galbavy) wrote:
  597. >Livingston Portmaster        ( ??? )
  598.  
  599. They have 10-, 20- and 30-port configurations.  List prices
  600. ranging from ~US$2.7K to ~US$3.8K.  Contact <doug@livingston.com>
  601. for more information.
  602.  
  603. 9. Acknowledgements:
  604.  
  605. Thanks for their contributions to:
  606.  
  607. Edward Vielmetti <emv@msen.com> (for the first Version, called 0.1)
  608. Bob Sutterfield <bob@MorningStar.Com> (lots of contributions, not only
  609.     about Morningstar PPP)
  610.  
  611. Jim.Rees@umich.edu (RFC descriptions)
  612. Helmut Heller <heller@heller.slip.uiuc.edu> (more next information)
  613. peter@micromuse.co.uk (Peter Galbavy) (for a PPP terminal server summary)
  614. lots.of.people@on.the.net () (for contributing to a PPP term. server summary)
  615.  
  616. mad@spirit.clearpoint.com (Michael Davis) (for Abbreviations)
  617. Dan Pritts (danno@umich.edu) (for MacPPP information)
  618. brian@novell.com (Brian Meek) (for much Information about Novell PPP)
  619. jason%hackbox.uucp@cs.utexas.edu (Jason Martin Levitt) (for reviewing an
  620.     Open Systems Today review about tcp/ip with ppp packages for
  621.     MSDOS/MSWINDOWS)
  622.  
  623. Local Variables:
  624. mode: text
  625. fill-column: 75
  626. eval: (auto-fill-mode 1)
  627. End:
  628. --
  629. --
  630.     Ignatios Souvatzis
  631.     ignatios@cs.uni-bonn.de souva@babsy.mpifr-bonn.mpg.de
  632.     (can read 8bit encoded charset iso8859-1 mail: DV\dv|_)
  633. Xref: bloom-picayune.mit.edu alt.fan.pratchett:3634 news.answers:4579
  634. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!hri.com!noc.near.net!uunet!munnari.oz.au!comp.vuw.ac.nz!kauri.vuw.ac.nz!gnat
  635. From: gnat@kauri.vuw.ac.nz (Nathan Torkington)
  636. Newsgroups: alt.fan.pratchett,news.answers
  637. Subject: Terry Pratchett Bibliography
  638. Message-ID: <pratchett-biblio-faq_724330800@kauri.vuw.ac.nz>
  639. Date: 14 Dec 92 11:00:21 GMT
  640. Sender: news@comp.vuw.ac.nz (News Admin)
  641. Reply-To: pratchett-faq@vuw.ac.nz
  642. Followup-To: alt.fan.pratchett
  643. Organization: Dept. of Comp. Sci., Victoria Uni. of Wellington, New Zealand.
  644. Lines: 932
  645. Approved: news-answers-request@MIT.Edu
  646. Supersedes: <pratchett-biblio-faq_723121200@kauri.vuw.ac.nz>
  647. Nntp-Posting-Host: kauri.vuw.ac.nz
  648. Originator: gnat@kauri.vuw.ac.nz
  649.  
  650. Archive-name: pratchett/bibliography
  651. Maintained-by: pratchett-faq@vuw.ac.nz <Nathan Torkington>
  652.  
  653. ----------------------------------------
  654. Changes:
  655.  * Lords and Ladies
  656.  * Dutch translations (empty)
  657.  * More 'Merkin translations
  658.  * Carpet People blurb
  659.  * Only you can save "mankind" (d'oh!) and blurb
  660.  * German "Die dunkle Seite der Sonne" ISBN/date/blurb
  661.  * German Good Omens blurb
  662.  * German Eric released
  663.  * Turntables of the night
  664.  * Note that Corgi only publishes pb editions
  665.  * German Eric is illustrated edition
  666. ----------------------------------------
  667.  
  668. This is the bibliography for the newsgroup alt.fan.pratchett.  It
  669. lists the books which Terry Pratchett has published, their
  670. availability and gives the 'blurbs' for each.
  671.  
  672. This FAQ is currently posted to news.answers and alt.fan.pratchett.
  673. All posts to news.answers are archived, and it is possible to retrieve
  674. the last posted copy via anonymous FTP from pit-manager.mit.edu as
  675. /pub/usenet/alt.fan.pratchett/pratchett/bibliography.  Those without
  676. FTP access should send e-mail to mail-server@rtfm.mit.edu with "send
  677. usenet/news.answers/finding-sources" in the body to find out how to do
  678. FTP by e-mail.
  679.  
  680. This FAQ was mostly written by Nathan Torkington, with numerous
  681. contributions by readers of alt.fan.pratchett.  The credits for
  682. compiling the collective FAQs of alt.fan.pratchett are appended to the
  683. body of the main FAQ.  Comments and indications of doubt are enclosed
  684. in []s in the text.  Each section begins with forty dashes ("-") on a
  685. line of their own, then the section number.  This should make
  686. searching for a specific section easy.
  687.  
  688. Contributions, comments and changes should be directed to
  689.     pratchett-faq@vuw.ac.nz
  690.  
  691. ----------------------------------------
  692. List of Answers
  693.  
  694. 1  The Discworld Series
  695. 1.1 The Colour of Magic
  696. 1.2 The Light Fantastic
  697. 1.3 Equal Rites
  698. 1.4 Mort
  699. 1.5 Sourcrey
  700. 1.6 Wyrd Sisters
  701. 1.7 Pyramids
  702. 1.8 Guards! Guards!
  703. 1.9 Eric
  704. 1.10 Moving Pictures
  705. 1.11 Reaper Man
  706. 1.12 Witches Abroad
  707. 1.13 Small Gods
  708. 1.14 Lords and Ladies
  709. 2  Pre-Discworld
  710. 2.1 The Carpet People
  711. 2.2 Strata
  712. 2.3 The Dark Side of the Sun
  713. 3  The Nomes Series
  714. 3.1 Truckers
  715. 3.2 Diggers
  716. 3.3 Wings
  717. 4  Young Adult Books
  718. 4.1 Only You Can Save The World
  719. 5  Collaborations
  720. 5.1 Good Omens (with Neil Gaiman)
  721. 5.2 The Unadulterated Cat (with Gray Joliffe)
  722. 6  Translations
  723. 6.1 German
  724. 6.2 Swedish
  725. 6.3 French
  726. 6.4 American
  727. 6.5 Dutch
  728. 7 Miscellany
  729.  
  730. ----------------------------------------
  731. 1. The Discworld Series
  732.  
  733. Without a doubt this is the most popular series of books that Terry
  734. Pratchett has written.  Without exception, the references here are
  735. to UK and Commonwealth editions.  Note that Corgi is the publisher for
  736. the paperback editions only.
  737.  
  738. ----------------------------------------
  739. 1.1 The Colour of Magic
  740.  
  741. %A Terry Pratchett
  742. %T The Colour of Magic
  743. %I Corgi
  744. %D
  745. ISBN    0 552 12475 3
  746.  
  747. Blurb:
  748.     Jerome K. Jerome meets _Lord of the Rings_ (with a
  749.     touch of _Peter Pan_) ...
  750.     On a world supported on the back of a giant turtle
  751.     (sex unknown), a gleeful, explosive, wickedly
  752.     eccentric expedition sets out.  There's an avaricious
  753.     but inept wizard, a naive tourist whose luggage
  754.     moves on hundreds of dear little legs, dragons who
  755.     only exist if you believe in them, and of course THE
  756.     EDGE of the planet ...
  757.     The wackiest and most original fantasy since
  758.     _Hitchhikers Guide to the Galaxy_.
  759.  
  760. ----------------------------------------
  761. 1.2 The Light Fantastic
  762.  
  763. %A Terry Pratchett
  764. %T The Light Fantastic
  765. %I Corgi
  766. %D
  767. ISBN    0 552 12848 1
  768.  
  769. Blurb:
  770.     As it moves towards a seemingly inevitable collision
  771.     with a malevolent red star, the Discworld has only one
  772.     possible saviour.  Unfortunately, this happens to be
  773.     the singularly inept and cowardly wizard called
  774.     Rincewind, who was last seen falling off the edge of
  775.     the world ....
  776.     The funniest and most unorthodox fantasy in this or
  777.     any other galaxy.
  778.  
  779. ----------------------------------------
  780. 1.3 Equal Rites
  781.  
  782. %A Terry Pratchett
  783. %T The Light Fantastic
  784. %I Corgi
  785. %D
  786. ISBN    0 552 13105 9
  787.  
  788. Blurb:
  789.     The last thing the wizard Drum Billet did, before Death
  790.     laid a bony hand on his shoulder, was to pass on his
  791.     staff of power to the eighth son of an eighth son.
  792.     Unfortunately for his colleagues in the chauvinistic
  793.     (not to say mysogynistic) world of magic, he failed to
  794.     check on the new-born baby's sex ...
  795.     A third hilarious adventure by the author of _The Colour
  796.     of Magic_ and _The Light Fantastic_.
  797.